home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Converters / template.m < prev    next >
Text File  |  1992-03-08  |  1KB  |  97 lines

  1. #import <stdio.h>
  2. #import <streams/streams.h>
  3. #import <appkit/graphics.h>
  4. #import <appkit/NXBitmapImageRep.h>
  5. #import "NXBitmapImageRepControl.h"
  6. #import "ImageControl.h"
  7. #import "template.h"
  8.  
  9. @implementation Template
  10.  
  11. - init
  12. {
  13.     return self;
  14. }
  15.  
  16. - free
  17. {
  18.     return [super free];
  19. }
  20.  
  21. - readFromStream: (NXStream *)stream from: sender;
  22. {
  23.     return nil;
  24. }
  25.  
  26. - (BOOL)write: (id)image toStream: (NXStream *)stream from: sender;
  27. {
  28.     return NO;
  29. }
  30.  
  31. - readAllFromStream: (NXStream *)stream from: sender
  32. {
  33.     return nil;
  34. }
  35.  
  36. - (BOOL)writeAll: (id)image toStream: (NXStream *)stream
  37. {
  38.     return NO;
  39. }
  40.  
  41. - customSaveView: (int)width
  42. {
  43.     return nil;
  44. }
  45.  
  46. - customOpenView: (int)width
  47. {
  48.     return nil;
  49. }
  50.  
  51. - (char *)getFormatName
  52. {
  53.     return("This is the template converter");
  54. }
  55.  
  56.  - (BOOL)setCustomParameter: (const char *)parameter withValue: (void *)ptr
  57. {
  58.     return NO;
  59. }
  60.  
  61.  - (void *)getCustomParameter: (const char *)parameter
  62. {
  63.     return NULL;
  64. }
  65.  
  66. - (char *)copyrightNotice
  67. {
  68.     return "This is for your copyright notice.";
  69. }
  70.  
  71. - (int)errorState
  72. {
  73.     return CONVERT_ERR_NONE;
  74. }
  75.  
  76. - (int)errorMessage
  77. {
  78.     return ERROR_NO_ERROR;
  79. }
  80.  
  81. - (char *)errorStringMessage
  82. {
  83.     return NULL;
  84. }
  85.  
  86. - (BOOL)needsWindowServer;
  87. {
  88.     return NO;
  89. }
  90.  
  91. - (char *)protocolVersion
  92. {
  93.     return "1.0";
  94. }
  95.  
  96. @end
  97.